home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 039a / ccompile.zip / STDIO.H < prev   
Text File  |  1988-11-29  |  358b  |  19 lines

  1. /*    STDIO.H        Include file for C88 input/output.    */
  2.  
  3. /*    a 'FILE' is simply an integer is this implimentation    */
  4.  
  5. typedef int  FILE;
  6.  
  7. /*    Standard input, standard output and standard error.    */
  8.  
  9. #define stdin    0
  10. #define stdout    1
  11. #define    stderr    2
  12. #define stdprn    4
  13.  
  14. #define    NULL    0
  15. #define TRUE    1
  16. #define FALSE    0
  17. #define EOF        (-1)
  18. #define ERR        (-1)
  19.